home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / pcwiz01.arc / DEL.INS < prev    next >
Text File  |  1991-08-22  |  2KB  |  73 lines

  1. DEL       Used to DELETE (or remove) a file.
  2.  
  3. Format:   DEL [D:Path]FileSpec
  4.  
  5. Example:           DEL MYFILE.TXT
  6.  
  7.    Deletes the file named MYFILE.TXT that resides on
  8.    the CURRENT (default) directory.
  9.  
  10. Example:           DEL A:MYFILE.TXT
  11.  
  12.    Deletes the file named MYFILE.TXT that resides on
  13.    the diskette in drive A.
  14.  
  15. Example:           DEL *.*
  16.  
  17.    Deletes ALL files contained in the CURRENT directory
  18.    that are not marked as READ-ONLY, HIDDEN, or SYSTEM.
  19. Example:           DEL D:\WP\*.TXT
  20.  
  21.    Deletes ALL files with a .TXT extension that reside
  22.    in the \WP directory on drive D.
  23.  
  24. Example:           DEL MYFILE.???
  25.  
  26.    Deletes ALL files with  file name of MYFILE.??? (???
  27.    means that extension can be anything) that reside in
  28.    the CURRENT directory.
  29.  
  30. Example:           DEL A:*.*
  31.  
  32.    Deletes ALL files contained on the diskette in drive
  33.    A: that have NOT had the attribute set as READ-ONLY
  34.    by using the ATTRIB command.
  35.  
  36.  
  37. Example:           DEL C:\CAL\01*.*
  38.  
  39.    Deletes ALL files that have a file name beginning
  40.    with the characters "01" that reside in the \CAL
  41.    directory on drive C:
  42.  
  43. Example:           DEL D:\CAL\01*.BAK
  44.  
  45.    Deletes ALL files that have a file name beginning
  46.    with the characters "01" AND have an extension of
  47.    .BAK that reside in the \CAL directory on drive D.
  48.  
  49. Example:           DEL \CAL\?1*.*
  50.  
  51.    Deletes ONLY those files that have a file name that
  52.    contains the character "1" as the SECOND character
  53.    in its name that reside in \CAL directory on the
  54.    CURRENT drive.
  55. Example:           DEL A:???S?.C*
  56.  
  57.    Deletes ONLY those files that have a file name with
  58.    total of 4-5 characters AND have the character "S"
  59.    as the FOURTH character in its name AND has an ext
  60.    that begins with character "C" that reside on the
  61.    diskette in drive A.
  62.  
  63.  
  64. [*]  Files that have been removed using the DEL command
  65.    are not actually PHYSICALLY erased from the disk or
  66.    diskette. The are simply marked as being deleted and
  67.    will not appear when a DIR command is issued. These
  68.    files can be UNDELETED by using certain disk utility
  69.    programs.
  70.  
  71. [*]  You can NOT delete files that have been marked as
  72.    READ-ONLY by using the ATTRIB command.
  73.